home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / grap_cad / lncad / tab123 / install.bat next >
DOS Batch File  |  1992-05-02  |  1KB  |  39 lines

  1. Echo off
  2.   Cls
  3.   Echo . 
  4.   Echo *=================[ Tab123 Install program ]===================*
  5.   Echo . 
  6.   Echo This program will extract files from both the Tab123
  7.   Echo ZIP archives to your AutoCAD directory
  8.   Echo .
  9.   Echo Press any key to continue or CTRL-C to quit now.
  10.   Echo .
  11.   pause > nul
  12.   if [%1] == [] goto :usage
  13.   if [%2] == [] goto :usage
  14.   if not exist %1\unzip.exe goto baddrive
  15.   if not exist %2\acad.exe goto badacad
  16. :ok
  17.   Echo .
  18.   Echo Extracting Tab123 files...
  19.   Echo .
  20.   %1\unzip %1\tab123\*.zip %2 /o
  21.   rename %2\!read.me! readme.tab
  22.   rename %2\manifest manifest.tab
  23.   rename %2\order.doc order.tab
  24. :done
  25.   Echo Done
  26.   goto end
  27. :badacad
  28.   Echo Error: %2 is not your AutoCAD directory.
  29.   goto usage
  30. :baddrive
  31.   Echo Error: the file UNZIP.EXE can not be found on drive %1
  32. :usage
  33.   Echo .
  34.   Echo In order for Install to work properly you must provide both the
  35.   Echo floppy drive and your AutoCAD directory:
  36.   Echo .
  37.   Echo Usage: INSTALL A: C:\ACAD
  38. :end
  39.